home *** CD-ROM | disk | FTP | other *** search
- <!-- Insert this script within the BODY tag block -->
- <SCRIPT LANGUAGE="JavaScript"><!-- Hide from old browsers
- // Define global variables
- var now = new Date();
- var hour = now.getHours();
-
- // Display message based on the time of day
- if(hour < 5) {
- document.write("Good evening!<BR>");
- }
- else if(hour < 12) {
- document.write("Good morning!<BR>");
- }
- else if(hour < 18) {
- document.write("Good afternoon!<BR>");
- }
- else {
- document.write("Good evening!<BR>");
- }
- // --></SCRIPT>
- <